home *** CD-ROM | disk | FTP | other *** search
- Path: news.uh.edu!usenet
- From: Sensarn <txs53132@bayou.uh.edu>
- Newsgroups: comp.lang.c++
- Subject: Re: How to clear screen?
- Date: Sun, 24 Mar 1996 09:37:53 -0800
- Organization: AEtna Insurance Agency
- Message-ID: <31558871.7B2E@bayou.uh.edu>
- References: <4gmalh$csq@cloner3.netcom.com> <Pine.A32.3.91.960228152731.19882A-100000@pegasus.acs.ttu.edu> <315527F6.3880@ljusdal.se>
- NNTP-Posting-Host: sip-16653.public-dialups.uh.edu
- Mime-Version: 1.0
- Content-Type: text/plain; charset=iso-8859-1
- Content-Transfer-Encoding: 8bit
- X-Mailer: Mozilla 2.01 (Win16; I)
-
- Marcsu wrote:
- >
- > akefay oscarway ayermay einerway wrote:
- > > > Is there a function to clear a text screen?
- > > #include <conio.h> // for clear screen function
- > > clrscr();
- > > this is for dos ...the header file is different for unix, and I do
- > > not know what it is....you can probably do a man on the function, or
- > > maybe not.
- >
- > Thereā¤s someone out there who knows what, the clear screen , function
- > etc. (header file), is called under UNIX(Linux), please post!!!
- > /marcsu
- >
- > marcus.berggren@ljusdal.se
-
- I use this:
-
- asm {
- mov ax,0x0003
- int 0x10
- }
-
- but then again, I use DOS...
- --
- ______________________________
-
- Steven Sensarn
- E-Mail - txs53132@bayou.uh.edu
- ______________________________
-